Problem Log - 2023 IOQM No. 9

  • Topic: Casework, NT
  • [Source:: 2023 IOQM #9]
  • [Time Taken:: 30m]
  • [Solved?:: Kinda]

Problem

Find the number of triples (a,b,c) of positive integers such that:

(a) ab is a prime; (b) bc is a product of two primes; © abc is not divisible by square of any prime and (d) abc30

Solution

From (a), we know that one of a or b must be a prime and the other one 1.

Case 1

Let’s say we pick a=1.

In this case, b and c must both be different primes (that is, bc, and both primes).

We find A={(a,b,c):abc30bc30} (a=1)

The set A becomes:

{(1,2,3),(1,2,5),(1,2,7),(1,2,11),(1,2,13),(1,3,2),(1,3,5),(1,3,7),(1,5,2),(1,5,3),(1,7,2),(1,7,3),(1,11,2),(1,13,2)}

and n(A)=14 .

Case 2

Now we pick b=1.

In this case, since bc is a product of two prime, and b=1, c must be a product of two primes. That is c{6,10,14,15,}

We are also limited by a, which is also a prime (ab is a prime)

Now, we need to find B={(a,b,c):abc30ac30} (b=1)

Again, abc should not be divisible by square of any prime, we need to make sure that ac is not divisible by any square as well.

So, the set B becomes:

{(2,1,15),(5,1,6),(3,1,10)}

and n(B)=3.

So, total possibilities = n(A)+n(B)=14+3=17